ngl: Remove unused function
authorTimm Bäder <mail@baedert.org>
Sun, 21 Mar 2021 17:00:10 +0000 (18:00 +0100)
committerTimm Bäder <mail@baedert.org>
Sun, 21 Mar 2021 17:00:10 +0000 (18:00 +0100)
gsk/ngl/gsknglrenderjob.c

index dc7935b69988ce1e36904b6b7f4ce6c1694899fd..f6cf7383538e6a16b2825e660013db4012349de6 100644 (file)
@@ -1619,37 +1619,6 @@ gsk_ngl_render_job_visit_rounded_clip_node (GskNglRenderJob     *job,
     }
 }
 
-static inline void
-sort_border_sides (const GdkRGBA *colors,
-                   int           *indices)
-{
-  gboolean done[4] = {0, 0, 0, 0};
-  guint cur = 0;
-
-  for (guint i = 0; i < 3; i++)
-    {
-      if (done[i])
-        continue;
-
-      indices[cur] = i;
-      done[i] = TRUE;
-      cur++;
-
-      for (guint k = i + 1; k < 4; k ++)
-        {
-          if (memcmp (&colors[k], &colors[i], sizeof (GdkRGBA)) == 0)
-            {
-              indices[cur] = k;
-              done[k] = TRUE;
-              cur++;
-            }
-        }
-
-      if (cur >= 4)
-        break;
-    }
-}
-
 static inline void
 gsk_ngl_render_job_visit_rect_border_node (GskNglRenderJob     *job,
                                            const GskRenderNode *node)